home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / docsdemo / pov / prismdm3 < prev    next >
Text File  |  1997-01-21  |  528b  |  24 lines

  1. #include "colors.inc"
  2.  
  3. camera {  
  4.   angle 20
  5.   location <2, 10, -30>
  6.   look_at <0, 1, 0>
  7. }
  8.  
  9. light_source { <20, 20, -20> color White }
  10.  
  11. prism { 
  12.   linear_sweep
  13.   cubic_spline
  14.   0,  // sweep the following shape from here ...
  15.   1,  // ... up through here
  16.   18, // the number of points making up the shape ...
  17.  
  18.   <3,-5>, <3,5>, <-5,0>, <3, -5>, <3,5>, <-5,0>, // sub-shape #1
  19.   <2,-4>, <2,4>, <-4,0>, <2,-4>, <2,4>, <-4,0>,  // sub-shape #2
  20.   <1,-3>, <1,3>, <-3,0>, <1, -3>, <1,3>, <-3,0>  // sub-shape #3
  21.   
  22.   pigment { Green }
  23. }
  24.